home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / win2 / winproof.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-02-10  |  2KB  |  52 lines

  1. @ECHO OFF
  2. ECHO             WINPROOF HARD DISK INSTALLATION INSTRUCTIONS
  3. ECHO Make a new directory for WinProof and switch to it.  Example:
  4. ECHO MKDIR WINPROOF
  5. ECHO CD WINPROOF
  6. ECHO Then type the command A:INSTALL if you are installing from drive A: or
  7. ECHO B:INSTALL B: if you are installing from drive B:.
  8. ECHO You will need 850K bytes free on your hard disk.
  9. ECHO ╔═══════════════════════════════════════════════════════╗
  10. ECHO ║ DID YOU MAKE A SUBDIRECTORY AND MADE IT YOUR DEFAULT? ║
  11. ECHO ╚═══════════════════════════════════════════════════════╝
  12. ECHO Press Control-C to stop installation.
  13. pause
  14. IF exist WINPRO.EXE goto ndrive
  15. IF %1. == . goto NDEFDRV
  16. If not exist %1\nul goto NEEDARG
  17. IF not exist %1WINPRO.EXE goto NEEDARG
  18. %1WINPRO.EXE /e.
  19. IF not exist WINPROOF.tut goto ERROR
  20. goto COPYDONE
  21. :NDEFDRV
  22. If not exist a:\nul goto NEEDARG
  23. IF not exist a:WINPRO.EXE goto NEEDARG
  24. a:WINPRO.EXE /e.
  25. IF not exist WINPROOF.tut goto ERROR
  26. :COPYDONE
  27. If not errorlevel 0 goto ERROR
  28. more < WINPROOF.doc
  29. ECHO Installation is complete.
  30. goto done
  31. :ndrive
  32. ECHO You cannot install WinProof while your default drive is the same as
  33. ECHO the installation drive.  Please switch to the drive and subdirectory
  34. ECHO you want to install WinProof to.
  35. goto fail
  36. :ERROR
  37. echo One or more of the WinProof files failed to copy. Check if there is
  38. echo 850K bytes avaliable on your hard disk.  Also check if the drive
  39. echo is not write protected.  Then, restart this installation.
  40. goto fail
  41. :NEEDARG
  42. ECHO The installation disk was not correctly specified.  If you are not
  43. ECHO installing from drive A:, you need to supply the drive letter to
  44. ECHO the INSTALL command.  If you are installing from drive B:, issue the
  45. ECHO command B:INSTALL B: (Make sure to include B: after INSTALL.)
  46. :fail
  47. ECHO   ╔═════════════════════════════════════════════════════╗
  48. echo   ║  WinProof has not been installed, please try again. ║
  49. ECHO   ╚═════════════════════════════════════════════════════╝
  50. :done
  51.  
  52.